home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / lib / posix / setuid.c < prev    next >
C/C++ Source or Header  |  1990-07-19  |  152b  |  9 lines

  1. #include <lib.h>
  2. #include <sys/types.h>
  3.  
  4. PUBLIC int setuid(usr)
  5. uid_t usr;
  6. {
  7.   return(callm1(MM, SETUID, (int)usr, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR));
  8. }
  9.